/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===== GLOBAL RESPONSIVE SCROLL FIX ===== */

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img,
video,
iframe{
    max-width:100%;
}

/* =========================
        HEADER
========================= */

.header{
    width:100%;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.container{
    width:min(95%,1400px);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;
    position:relative;
}



/*==========================
        LOGO
==========================*/

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    margin-left: -12px;
}
/* Top */

.logo-top{
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1;

    letter-spacing: -2px;
    text-transform: uppercase;
}

.greens{
    background: linear-gradient(
        180deg,
        #27d44c 0%,
        #17b33b 35%,
        #0d8f2c 70%,
        #06661d 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grays{
    margin-left: 12px;

    background: linear-gradient(
        180deg,
        #5d6776 0%,
        #414a57 45%,
        #2f3742 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Bottom */
/* 
.logo-bottom{

    text-align:center;

    font-family:Arial, Helvetica, sans-serif;

    font-weight:700;

    font-size:18px;

    letter-spacing:16px;

    color:#232b39;

    margin-top:10px;

    margin-left:16px;

} */

/* tablet */
@media(max-width:992px){

    .logo-top{
        font-size:42px;
    }

    .logo-bottom{
        font-size:14px;
        letter-spacing:10px;
    }

}

/* mobile */
@media(max-width:768px){

    .logo-top{

        font-size:28px;

        letter-spacing:-1px;

    }

    .grays{

        margin-left:5px;

    }

    .logo-bottom{

        font-size:8px;

        letter-spacing:5px;

        margin-top:3px;

        margin-left:6px;

    }

}

/* small mobile */
@media (max-width:468px){

    .container{
        padding:8px 10px;
    }

    .logo{
        display:flex;
        align-items:left;
        flex:1;
        overflow:hidden;
    }

    .logo-text{
        display:flex;
        flex-direction:column;
        justify-content:left;
    }

    /* GREEN METTLE */
    .logo-top {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 900;
        letter-spacing: -0.5px;
        line-height: 1;
    }

    .greens{
        color:#16953f;
         margin-left: 2px;
    }

    .grays{
        color:#555;
        margin-left:7px;
    }

    /* EXPORTERS */
    .logo-bottom{
        margin-top:3px;
        text-align:left;
        font-size:8px;
        font-weight:700;
        letter-spacing:3px;
        color:#232b39;
        white-space:nowrap;
        margin-left:16px;
        display: none;
    }

    .menu-toggle{
        margin-left:10px;
    }
}


/* =========================
      NAVBAR
========================= */

.navbar{
    display:flex;
    align-items:center;
    margin-left:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#123d8d;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#139548;
}

/* =========================
      LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}

.logo img{
    width:120px;
    height:auto;
}

.company-logo{
    display:flex;
    align-items:center;
    gap:18px;   
}

.company-logo img{
    width: 420px;
    height: auto;
    display: block;
    padding-right: 90px;
}

.logo-text{
    display:flex;
    align-items:center;
}

.logo-text h1{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    white-space:nowrap;
    line-height:1;
    font-size:2.4rem;
    font-weight:700;
}

.greens{
    color:#139548;
}

.grays{
    color:#555;
}

/* =========================
      DESKTOP BUTTON
========================= */

.quote-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#139548;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    white-space:nowrap;
    margin-left:30px;   /* Increase gap from Contact */
    flex-shrink:0;
    transition:.3s ease;
}

.quote-btn:hover{
    background:#0d7d39;
}

.mobile-quote{
    display:none;
}

/* =========================
      MOBILE BUTTON
========================= */

.quote-mobile-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#139548;
    color:#fff !important;
    padding:14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* =========================
      HAMBURGER
========================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:30px;
    height:22px;
    cursor:pointer;
    z-index:1002;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:#123d8d;
    border-radius:2px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* =========================
      TABLET
========================= */

@media(max-width:992px){

    .company-logo{
        display:flex;
        align-items:center;
        gap:18px;   
    }

    .company-logo img{
        max-width:320px;
    }

    .logo img{
        width:90px;
    }

    .logo-text h1{
        font-size:1.7rem;
    }

    .nav-links{
        gap:22px;
    }

    .quote-btn{
        padding:12px 22px;
    }

}

/* =========================
      MOBILE
========================= */

@media (max-width:768px){

    .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:10px 15px;
    }

    /* Logo */
    .logo{
        display:flex;
        align-items:center;
        gap:10px;
        flex:0 0 auto;
    }

    .logo img{
        width:55px;
        height:auto;
        display:block;
    }

    .logo-text img{
        width:150px;
        height:auto;
        display:block;
    }

    /* Hide desktop quote button */
    .quote-btn{
        display:none !important;
    }

    /* Hamburger */
    .menu-toggle{
        display:flex !important;
        margin-left:auto;
    }

    /* Mobile Navbar */
    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        max-height:0;
        overflow:hidden;
        transition:max-height .4s ease;
        box-shadow:0 8px 15px rgba(0,0,0,.08);
        z-index:999;
    }

    .navbar.active{
        max-height:100vh;
        overflow-y:auto;
    }

    .nav-links{
        display:flex;
        flex-direction:column;
        width:100%;
        margin:0;
        padding:0;
        list-style:none;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-links li:last-child{
        border-bottom:none;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:18px 20px;
        text-decoration:none;
    }

    /* Mobile Quote Button */
    .mobile-quote{
        display:block !important;
        list-style:none;
        padding:20px;
        border-bottom:none !important;
    }

    .quote-mobile-btn{
        display:block !important;
        width:100%;
        background:#123d8d;
        color:#fff !important;
        text-align:center;
        text-decoration:none;
        padding:14px 20px;
        border-radius:8px;
        font-weight:600;
        box-sizing:border-box;
    }

    .quote-mobile-btn:hover{
        background:#0f3277;
    }

}


@media (max-width:468px){


    .company-logo{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:6px;
    }

    .company-logo img{
        width: 200px;      /* Adjust as needed */
        max-width: 200px;
        height: auto;
    }

    .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:10px 6px 10px 6px;
    }

    /* Logo */
    .logo{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        gap:1px;
        flex:1;
    }

    .logo img{
        width:80px;
        height:auto;
        flex-shrink:0;
    }

    /* .logo-text{
        display:block;      
        text-align:left;
        flex:1;
    }

    .logo-text h1{
        display:block;      
        margin:0;
        font-size:16px;
        line-height:1.2;
        white-space:nowrap;
        text-align:left;
    } */

    .greens,
    .grays{
        display:inline;
    }

    /* Hide desktop button */
    .quote-btn{
        display:none !important;
    }

    /* Hamburger */
    .menu-toggle{
        display:flex;
        margin-left:15px;
        flex-shrink:0;
    }

    /* Mobile navbar */
    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        max-height:0;
        overflow:hidden;
        transition:max-height .4s ease;
        box-shadow:0 8px 15px rgba(0,0,0,.08);
    }

    .navbar.active{
        max-height:500px;
    }

    .nav-links{
        display:flex;
        flex-direction:column;
        gap:0;
        width:100%;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-links li:last-child{
        border-bottom:none;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:18px 22px;
    }

    .mobile-quote{
        display:block;
        width:100%;
        padding:20px;
    }

    .quote-mobile-btn{
        display:block;
        width:100%;
        text-align:center;
        background:#123d8d;
        color:#fff !important;
        padding:14px 20px;
        border-radius:8px;
    }

}


/* ========================= 
 HERO SECTION 
 ========================= */

.hero{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

/* ========================= */
/* CONTENT */
/* ========================= */

.content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:900px;
    z-index:4;
}

.content h4{
    color:#00d26a;
    letter-spacing:3px;
    margin-bottom:20px;
    font-size:24px;
}

.content h1{
    font-size:60px;
    margin-bottom:20px;
}

.content p{
    font-size:28px;
    line-height:1.7;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 45px;
    background:#149845;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.btn:hover{
    background:#0e7d39;
}

/* ========================= */
/* SLIDER BUTTONS */
/* ========================= */

.prev,
.next{
    position:absolute;
    bottom:45px;
    top:auto;
    transform:none;
    width:65px;
    height:65px;
    border:none;
    background:#fff;
    color:#222;
    font-size:30px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* Left button */

.prev{
    left:8%;
    border-right:1px solid #ddd;
}

/* Right button */

.next{
    left:calc(8% + 65px);
}

/* Hover */

.prev:hover,
.next:hover{
    background:#149845;
    color:#fff;
}

/* ========================= */
/* DOTS */
/* ========================= */

.dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;
    opacity:.5;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    opacity:1;
    background:#15a34a;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:992px){

.content h1{
    font-size:42px;
}

.content p{
    font-size:20px;
}

.content h4{
    font-size:18px;
}

.prev,
.next{
    width:58px;
    height:58px;
    font-size:26px;
}

.next{
    left:calc(8% + 58px);
}

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.hero{
    height:80vh;
}

.content{
    width:92%;
}

.content h4{
    font-size:15px;
    letter-spacing:1px;
}

.content h1{
    font-size:30px;
}

.content p{
    font-size:16px;
    line-height:1.6;
}

.btn{
    padding:12px 28px;
}

/* Slider buttons */

.prev,
.next{
    width:50px;
    height:50px;
    font-size:22px;
    bottom:20px;
}

.prev{
    left:20px;
}

.next{
    left:70px;
}

/* Dots */

.dots{
    bottom:25px;
}

.dot{
    width:10px;
    height:10px;
}

}


/*======================================
            ABOUT US
=======================================*/

.about-section{

    width:100%;
    padding:70px 20px;
    background:#f8f9f8;

}

.about-heading{

    text-align:center;
    margin-bottom:40px;

}

.about-heading h2{

    color:#14863b;

    font-size:34px;

    font-weight:700;

    letter-spacing:5px;

    text-transform:uppercase;

}

/* Card */

.about-card{

    max-width:1400px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    padding:55px 60px;

    border-left:6px solid #14863b;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.about-card p{

    font-size:20px;

    color:#1f2937;

    line-height:2.1;

    margin-bottom:30px;

    text-align:justify;

}

.about-card p:last-child{

    margin-bottom:0;

}

/*==============================
          Laptop
===============================*/

@media(max-width:1200px){

.about-card{

padding:45px;

}

.about-card p{

font-size:18px;

line-height:1.9;

}

}

/*==============================
          Tablet
===============================*/

@media(max-width:992px){

.about-heading h2{

font-size:28px;

letter-spacing:3px;

}

.about-card{

padding:35px;

border-radius:22px;

}

.about-card p{

font-size:17px;

line-height:1.8;

}

}

/*==============================
          Mobile
===============================*/

@media(max-width:768px){

.about-section{

padding:50px 15px;

}

.about-heading h2{

font-size:25px;

letter-spacing:2px;

line-height:1.5;

}

.about-card{

padding:25px 20px;

border-radius:18px;

border-left:5px solid #14863b;

}

.about-card p{

font-size:15px;

line-height:1.8;

text-align:left;

margin-bottom:20px;

}

}

/*==============================
        Small Mobile
===============================*/

@media(max-width:480px){

.about-heading h2 {
        font-size: 15px;
        white-space: nowrap;
        letter-spacing: 1.5px;
    }

    .about-card{

        padding:20px 16px;

    }

    .about-card p{
        text-align: justify;
        text-justify: inter-word;
        font-size: 14px;
        line-height: 1.7;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

}



/*=====================================================
                THEME COLORS
=====================================================*/

:root{
    --primary:#1B5E20;
    --secondary:#2E7D32;
    --accent:#4CAF50;
    --dark:#222;
    --gray:#555;
    --light:#f8f9fa;
    --border:#dfe8df;
}


/*=====================================================
                FOUNDER SECTION
=====================================================*/

.founder-image{
    width:420px;
    height:420px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    position:relative;
}

.founder-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top; /* Adjust if needed */
    display:block;
}


.founder-section{
    padding:90px 0;
    background:#fff;
}

.section-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 40px 0;
}

.section-divider span{
    width: 150px;
    height: 2px;
    background: #1a9b43;
}

.section-divider i{
    color: #1a9b43;
    font-size: 24px;
    transform: rotate(-45deg);
}


.founder-section .container{
    width:min(92%,1300px);
    margin:auto;
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    align-items:center;
}

.founder-content{
    background:#fff;
    padding:40px 45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-left:6px solid var(--secondary);
}

.founder-content h2{
    font-size:42px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.founder-content h2::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    border-radius:30px;
    margin-top:12px;
}

.message{
        text-align: justify;
        text-justify: inter-word;
        font-size: 14px;
        line-height: 1.7;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;
}




/*=====================================================
                    COMPANY CARD
=====================================================*/

.company-card{
    width:100%;
    box-sizing:border-box;
    margin-top:45px;
    padding:30px 15px;
    text-align:center;
    border-top:1px solid var(--border);

}

.company-card h3{
    font-size:36px;
    color:var(--primary);
    margin-bottom:18px;
    font-weight:700;

}

.company-card p{
    font-size:18px;
    color:var(--gray);
    line-height:1.8;
    margin-top:20px;
}


/*=====================================================
                    FOUNDER INFO
=====================================================*/

.founder-info{
    width:100%;
    text-align:center;
    margin-top:45px;
}

.founder-info h3{
    font-size:40px;
    color:var(--primary);
    margin-bottom:10px;
    font-weight:700;
}

.founder-info h4{
    font-size:22px;
    color:var(--dark);
    margin-bottom:20px;
    font-weight:600;
}

.founder-tagline{
    width:210px;
    display:block;
    margin:auto;
}


/*=====================================================
                    TABLET
=====================================================*/

@media(max-width:1100px){

    .founder-image{
    width:360px;
    height:360px;
}

.founder-section .container{
    grid-template-columns:1fr;
    text-align:center;
    gap:50px;
}

.founder-image{
    max-width:500px;
    margin:auto;
}



.section-divider{
    gap:12px;
    margin:25px auto;
}

.section-divider span{
    max-width:120px;
}

.section-divider i{
    font-size:24px;
}

.founder-content{
    padding:40px;
}

.founder-content h2{
    font-size:40px;
}

.founder-content h2::after{
    margin:12px auto 0;
}

.message{
    font-size:18px;
    text-align:left;
}

.founder-info h3{
    font-size:34px;
}

.company-card{
    text-align:center;
}

}


/*=====================================================
                    MOBILE
=====================================================*/

@media(max-width:768px){

.founder-image{
    width:280px;
    height:280px;
}

.founder-section{
    padding:50px 15px;
}

.founder-section .container{
    width:100%;
    grid-template-columns:1fr;
    gap:30px;
}

.founder-image{
    max-width:300px;
    width:100%;
    margin:auto;
}

.founder-content{
    width:100%;
    padding:30px 25px;
    border-left:5px solid var(--secondary);
}

.founder-content h2{
    font-size:34px;
    text-align:center;
    margin-bottom:25px;
}

.founder-content h2::after{
    margin:12px auto 0;
}


/* MESSAGE */

.message{

    width:100%;
    box-sizing:border-box;
    position:relative;
    margin:0 auto 25px;
    padding:55px 24px 40px;
    font-size:15px;
    line-height:1.8;
    text-align:left;

    border-radius:25px;
    background:#fff;

    border:2px solid #edf6ed;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.message::before{

    content:"❝";
    position:absolute;
    top:15px;
    left:15px;

    width:48px;
    height:48px;

    border-radius:50%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--secondary);
    font-size:34px;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

}

.message::after{

    content:"❞";
    position:absolute;
    right:18px;
    bottom:10px;

    font-size:48px;
    color:#dce8d8;

}

.message{

    background-image:
    linear-gradient(var(--secondary),var(--secondary)),
    linear-gradient(var(--secondary),var(--secondary));

    background-repeat:no-repeat;

    background-size:
    2px 55px,
    80px 2px;

    background-position:
    right 18px bottom 18px,
    right 18px bottom 18px;

}


/* Founder */

.founder-info{
    margin-top:25px;
}

.founder-info h3{
    font-size:28px;
}

.founder-info h4{
    font-size:18px;
}

.founder-tagline{
    width:180px;
}


/* Company */

.company-card{
    margin-top:30px;
    padding:20px;
    border-top:1px solid var(--border);
}

.company-card h3{
    font-size:26px;
}

.company-card p{
    font-size:15px;
    line-height:1.8;
}

}


/*=====================================================
                SMALL MOBILE
=====================================================*/

@media(max-width:480px){

    .founder-image{
    width:300px;
    height:300px;
}

.founder-section{
    padding:45px 15px;
}

.section-divider{
    gap:10px;
    margin:20px auto;
}

.section-divider span{
    max-width:85px;
    height:2px;
}

.section-divider i{
    font-size:20px;
}

.founder-section .container{
    gap:20px;
}

.founder-image{
    width:100%;
    max-width:320px;
    margin:auto;
}

.founder-content{
    padding:25px 18px;
}

.founder-content h2{
    font-size:28px;
}

        .message {
        text-align: left;
        text-justify: auto;
        hyphens: auto;
        word-break: normal;
        overflow-wrap: break-word;
    }

.message::before{
    width:44px;
    height:44px;
    font-size:30px;
}

.message::after{
    font-size:42px;
}


/* Founder */

.founder-info{
    margin-top:30px;
}

.founder-info h3{
    font-size:24px;
}

.founder-info h4{
    font-size:17px;
}

.founder-tagline{
    width:165px;
}


/* Company */

.company-card{
    margin-top:30px;
    padding:20px 10px;
}

.company-card h3{
    font-size:24px;
    margin:0 0 15px;
}

.company-card p{
    font-size:15px;
    line-height:1.75;
    margin:0;
}

}


/*==========================
Vision Section
==========================*/

.vision-section{
    padding:90px 5%;
    background:#ffffff;
}

.vision-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*==========================
Cards
==========================*/

.vision-card{
    background:#fff;
    position:relative;
    overflow:hidden;
    padding:40px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    transition:.45s;
}

.vision-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.18);
}

/*==========================
Top Border Colors
==========================*/

.blue{
    border-top:6px solid #143b82;
}

.green{
    border-top:6px solid #14863b;
}

.orange{
    border-top:6px solid #f2a000;
}

/*==========================
Decorative Circle
==========================*/

.circle{
    width:170px;
    height:170px;
    position:absolute;
    top:-70px;
    right:-70px;
    background:#e9f5ea;
    border-radius:50%;
}

/*==========================
Icons
==========================*/

.icon{
    width:95px;
    height:95px;
    background:#143b82;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:45px;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}

/*==========================
Headings
==========================*/

.vision-card h2{
    font-size:48px;
    color:#143b82;
    margin-bottom:25px;
    line-height:1.2;
}

/*==========================
Paragraph
==========================*/

.vision-card p{
    font-size:22px;
    line-height:2;
    color:#222;
}

/*==========================
Lists
==========================*/

.vision-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.vision-card li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.8;
    color: #222;
}

.vision-card li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #14863b;
}


/*==========================
Emoji Animations
==========================*/

.earth{
    animation:rotateEarth 8s linear infinite;
}

.target{
    animation:pulseTarget 2s infinite;
}

.star{
    animation:twinkle 1.5s infinite;
}

@keyframes rotateEarth{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes pulseTarget{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes twinkle{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.25);
    }
}

/*==========================
Tablet
==========================*/

@media(max-width:1200px){

    .vision-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:900px){

    .vision-container{
        grid-template-columns:1fr;
    }

    .vision-card{
        padding:35px;
    }

    .vision-card h2{
        font-size:36px;
    }

    .vision-card p{
        font-size:18px;
        line-height:1.8;
    }

    .vision-card li{
        font-size:18px;
        line-height:1.7;
        padding-left:28px;
    }

    .vision-card li::before{
        font-size:24px;
    }

}

/*==========================
Mobile
==========================*/

@media(max-width:600px){

    .vision-section{
        padding:60px 15px;
    }

    .vision-card{
        padding:28px;
        border-radius:20px;
    }

    .icon{
        width:75px;
        height:75px;
        font-size:34px;
    }

    .vision-card h2{
        font-size:28px;
        margin-bottom:18px;
    }

    .vision-card p{
        font-size:16px;
        line-height:1.8;
    }

    .vision-card li{
        font-size:16px;
        padding-left:24px;
        margin-bottom:14px;
        line-height:1.7;
    }

    .vision-card li::before{
        font-size:20px;
    }

    .circle{
        width:120px;
        height:120px;
        top:-45px;
        right:-45px;
    }

}


/* ==========================
        PRODUCTS
========================== */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(11,79,162,.18);
}

.product-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#0B4FA2;
    color:#fff;
    padding:8px 15px;
    border-radius:6px;
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
}

.product-content{
    padding:25px;
}

.product-content h3{
    color:#0B4FA2;
    font-size:28px;
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.details-btn{
    border:none;
    background:#0B4FA2;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.details-btn:hover{
    background:#083b79;
}


/* ==========================
        PRODUCT MODAL
========================== */

.product-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    padding:25px;
    z-index:9999;
}

.product-modal.active{
    display:flex;
}

.modal-box{
    position:relative;
    width:1350px;
    max-width:96%;
    height:90vh;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:grid;
    grid-template-columns:55% 45%;
}


/* Close */

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:35px;
    color:#666;
    cursor:pointer;
    z-index:100;
}

.close-btn:hover{
    color:#0B4FA2;
}


/* ==========================
        LEFT SIDE
========================== */

.modal-left{
    padding:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    background:#fff;
    overflow:hidden;
}

#mainImage{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
}

.thumbnail-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:20px;
}

.thumb{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    border:2px solid transparent;
    cursor:pointer;
    transition:.3s;
}

.thumb:hover,
.active-thumb{
    border-color:#0B4FA2;
}



/* ==========================
        RIGHT SIDE
========================== */

.modal-right{
    padding:35px;
    overflow-y:auto;
    scrollbar-width:thin;
}

.modal-right h2{
    color:#0B4FA2;
    font-size:34px;
    margin-bottom:20px;
}

/* Modal Description */

#modalDescription{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* Paragraphs */

#modalDescription p{
    margin-bottom:18px;
}

/* Section Headings */

#modalDescription h3{
    color:#0B4FA2;
    font-size:22px;
    margin:28px 0 14px;
    font-weight:700;
}

/* Lists */

#modalDescription ul{
    margin:0 0 22px 22px;
    padding:0;
}

#modalDescription li{
    margin-bottom:10px;
    line-height:1.7;
}

/* Blue Bullets */

#modalDescription li::marker{
    color:#0B4FA2;
    font-size:16px;
}

.product-description{
    display:none;
}


/* ==========================
        SCROLLBAR
========================== */

.modal-right::-webkit-scrollbar{
    width:8px;
}

.modal-right::-webkit-scrollbar-thumb{
    background:#0B4FA2;
    border-radius:20px;
}

.modal-right::-webkit-scrollbar-track{
    background:#eee;
}


/* ==========================
      MODAL NAVIGATION
========================== */

.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#0B4FA2;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:50;
    transition:.3s;
}

.modal-prev{
    left:18px;
}

.modal-next{
    right:18px;
}

.nav:hover{
    background:#083b79;
}

/*==========================
spec table
======================== */
.spec-table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
    table-layout:fixed;
}

.spec-table td{
    padding:12px 0;
    border-bottom:1px solid #eee;
    vertical-align:top;
    font-size:16px;
    line-height:1.6;
}

.spec-table td:first-child{
    width:35%;
    font-weight:600;
    color:#222;
    padding-right:20px;
}

.spec-table td:last-child{
    width:65%;
    color:#666;
    word-break:break-word;
}

/*==========================
quote button
==========================*/

.quote-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:25px;
    padding:14px 28px;
    border-radius:50px;
    background:#169647;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    background:#0f7d3a;
}

/*==========================
        TABLET
==========================*/

@media(max-width:992px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .modal-box{
        width:95%;
        max-height:95vh;
        grid-template-columns:1fr;
        overflow-y:auto;
    }

    .modal-left{
        padding:20px;
    }

    .modal-right{
        padding:25px;
        overflow:visible;
    }

    #mainImage{
        height:350px;
    }

    .thumb{
        width:75px;
        height:60px;
    }

    .nav{
        display:none;
    }

}


/*==========================
        MOBILE
==========================*/

@media(max-width:768px){

.products{
    padding:60px 5%;
}

.products-grid{
    grid-template-columns:1fr;
}

.product-image{
    height:230px;
}

.product-content h3{
    font-size:24px;
}

.section-title h2{
    font-size:30px;
}

.modal-box{
    width:100%;
    max-height:95vh;
    display:block;
    overflow-y:auto;
}

.modal-left{
    padding:18px;
}

.modal-right{
    padding:20px;
}

#mainImage{
    height:240px;
}

.thumb{
    width:65px;
    height:55px;
}

.modal-right h2{
    font-size:28px;
}

#modalDescription{
    font-size:15px;
    line-height:1.7;
}

#modalDescription h3{
    font-size:20px;
}

#modalDescription li{
    font-size:15px;
}

.close-btn{
    font-size:30px;
}

.quote-btn{
    width:100%;
    text-align:center;
}

.nav{
    display:none;
}

}

/*==========================
      SMALL MOBILE
==========================*/

@media(max-width:480px){

.product-image{
    height:210px;
}

#mainImage{
    height:210px;
}

.thumb{
    width:55px;
    height:45px;
}

.modal-right h2{
    font-size:24px;
}

#modalDescription{
    font-size:14px;
    line-height:1.7;
}

#modalDescription h3{
    font-size:18px;
}

#modalDescription li{
    font-size:14px;
}

#modalDescription{
    font-size:14px;
}

}


/*==============================
EXPORT MARKET
===============================*/

.export-market{
    width:100%;
    padding:80px 8%;
    background:#f7f8fb;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#0d3b66;
    font-weight:700;
}

/*==============================
DESKTOP
===============================*/

.market-container{
    width:100%;
    max-width:1100px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr); /* 4 columns */
    gap:25px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.market-card{
    background:#fff;
    border-radius:18px;
    padding:25px 15px;
    text-align:center;
    border:1px solid #e7eaf2;
    transition:all .35s ease;
    cursor:pointer;
    box-shadow:0 5px 12px rgba(0,0,0,.05);
}

.market-card img{
    width:45px;
    height:45px;
    object-fit:contain;
    margin-bottom:15px;
    transition:.3s;
}

.market-card h3{
    font-size:18px;
    color:#1d3557;
    font-weight:600;
    transition:.3s;
    line-height:1.3;
}

/*==============================
HOVER
===============================*/

.market-card:hover{
    background:#0056b3;
    transform:translateY(-8px);
    box-shadow:0 18px 30px rgba(0,86,179,.30);
}

.market-card:hover h3{
    color:#fff;
}

.market-card:hover img{
    transform:scale(1.08);
}

/*==============================
TABLET
===============================*/

@media (max-width:991px){

    .export-market{
        padding:60px 5%;
    }

    .market-container{
        grid-template-columns:repeat(4,1fr);
        gap:15px;
        padding:25px;
        max-width:100%;
    }

    .market-card{
        padding:18px 10px;
    }

    .market-card img{
        width:36px;
        height:36px;
    }

    .market-card h3{
        font-size:14px;
    }

}

/*==============================
MOBILE
===============================*/

@media (max-width:768px){

    .export-market{
        padding:50px 4%;
    }

    .section-title{
        margin-bottom:35px;
    }

    .section-title h2{
        font-size:30px;
    }

    .market-container{
        grid-template-columns:repeat(4,1fr); /* 4 columns */
        gap:10px;
        padding:15px;
        border-radius:20px;
    }

    .market-card{
        padding:12px 6px;
        border-radius:15px;
    }

    .market-card img{
        width:28px;
        height:28px;
        margin-bottom:8px;
    }

    .market-card h3{
        font-size:11px;
        line-height:1.3;
    }

}

/*==============================
SMALL MOBILE
===============================*/

@media (max-width:480px){

    .export-market{
        padding:40px 4%;
    }

    .market-container{
        grid-template-columns:repeat(4,1fr); /* 4 columns */
        gap:8px;
        padding:12px;
        border-radius:18px;
    }

    .market-card{
        padding:10px 5px;
        border-radius:12px;
    }

    .market-card img{
        width:24px;
        height:24px;
        margin-bottom:6px;
    }

    .market-card h3{
        font-size:10px;
        line-height:1.2;
    }

}




/*==============================
SERVICES
===============================*/

.services{
    width:100%;
    padding:80px 8%;
    background:#f7f8fb;
}

.services .section-title{
    text-align:center;
    margin-bottom:60px;
}

.services .section-title h2{
    font-size:38px;
    color:#0d3b66;
    margin-bottom:15px;
}

.services .section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    background:#0056b3;
    transform:translateY(-8px);
}

.service-icon{
    width:70px;
    height:70px;
    background:#0056b3;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:20px;
}

.service-card:hover .service-icon{
    background:#fff;
    color:#0056b3;
}

.service-card h3{
    color:#0d3b66;
    margin-bottom:15px;
    transition:.3s;
}

.service-card p{
    color:#666;
    transition:.3s;
    text-align: justify;
    text-justify: inter-word;
    font-size: 14px;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card ul{
    padding-left:20px;
    color:#666;
    line-height:1.8;
    transition:.3s;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover ul{
    color:#fff;
}
/*==============================
      Tablet
==============================*/

@media(max-width:1024px){

.service-content{

    padding:40px;

}

.service-content h3{

    font-size:38px;

}

.service-content p{

        text-align: justify;
        text-justify: inter-word;
        font-size: 14px;
        line-height: 1.7;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;

}

.service-content ul li{

    font-size:19px;

}

.services-heading h2{

    font-size:50px;

}

.services-heading p{

    font-size:20px;

}

}


/*==============================
      Mobile
==============================*/

@media(max-width:768px){

.services{
    padding:60px 5%;
}

.services .section-title h2{
    font-size:30px;
}

.services-container{
    grid-template-columns:1fr;
    gap:20px;
}

.service-card{
    padding:25px;
}

.service-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

}

/*==============================
    Small Phones
==============================*/

@media(max-width:480px){

.services-heading h2{

    font-size:34px;

}

.services-heading p{

    font-size:16px;

}

.service-image img{

    height:220px;

}

.service-content{

    padding:25px 20px;

}

.service-content h3{

    font-size:26px;

}

.service-content p{

        text-align: justify;
        text-justify: inter-word;
        font-size: 12px;
        line-height: 1.0;
        /* word-break: normal; 
        overflow-wrap: break-word; */
        hyphens: auto;

}

.service-content ul li{

    font-size:15px;

}

}

/*=========================
      CONTACT SECTION
=========================*/

.contact{

    width:100%;
    padding:80px 8%;
    background:#fff;

}

/* Heading */

.contact-heading{

    text-align:center;
    margin-bottom:60px;

}

.contact-heading h2{

    font-size:60px;
    color:#163d84;
    font-weight:800;
    margin-bottom:20px;

}

.contact-heading p{

    color:#555;
    font-size:22px;
    line-height:1.7;

}

/* Wrapper */

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;

}

/* Cards */

.contact-info,
.contact-form{

    background:#fff;

    border-radius:28px;

    padding:50px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.contact-info:hover,
.contact-form:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/* Contact Details */

.info-box{

    display:flex;
    align-items:center;

    margin-bottom:45px;

}

.icon{

    width:72px;
    height:72px;

    background:#173c84;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-right:22px;

    flex-shrink:0;

}

.icon i{

    color:#fff;
    font-size:30px;

}

.text h3{

    font-size:33px;
    color:#111;
    margin-bottom:6px;

}

.text p{

    color:#555;
    font-size:26px;

}

/* Form */

.contact-form h2{

    color:#173c84;

    font-size:52px;

    margin-bottom:35px;

}

.row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:14px;

    padding:18px 22px;

    font-size:18px;

    outline:none;

    margin-bottom:22px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#173c84;

}

.contact-form textarea{

    resize:none;

    height:180px;

}

.contact-form button{

    background:#173c84;

    color:#fff;

    border:none;

    border-radius:40px;

    padding:18px 50px;

    font-size:22px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#0b8c43;

    transform:translateY(-3px);

}

/*=========================
      Tablet
=========================*/

@media(max-width:1024px){

.contact-wrapper{

    grid-template-columns:1fr;

}

.contact-form h2{

    font-size:42px;

}

.contact-heading h2{

    font-size:50px;

}

.text h3{

    font-size:28px;

}

.text p{

    font-size:20px;

}

}

/*=========================
      Mobile
=========================*/

@media(max-width:768px){

.contact{

    padding:60px 20px;

}

.contact-heading{

    margin-bottom:40px;

}

.contact-heading h2{

    font-size:38px;

}

.contact-heading p{

    font-size:16px;

}

.contact-wrapper{

    gap:30px;

}

.contact-info,
.contact-form{

    padding:30px 22px;

}

.info-box{

    align-items:flex-start;

    margin-bottom:30px;

}

.icon{

    width:60px;
    height:60px;

    margin-right:16px;

}

.icon i{

    font-size:24px;

}

.text h3{

    font-size:22px;

}

.text p{

    font-size:16px;

}

.contact-form h2{

    font-size:34px;

    margin-bottom:25px;

}

.row{

    grid-template-columns:1fr;

    gap:0;

}

.contact-form input,
.contact-form textarea{

    font-size:16px;

}

.contact-form textarea{

    height:150px;

}

.contact-form button{

    width:100%;

    padding:16px;

    font-size:18px;

}

}

/*=========================
      Small Phones
=========================*/

@media(max-width:480px){

.contact-heading h2{

    font-size:32px;

}

.contact-form h2{

    font-size:28px;

}

.text h3{

    font-size:20px;

}

.text p{

    font-size:15px;

}

.icon{

    width:55px;
    height:55px;

}

.icon i{

    font-size:22px;

}

}

/*=========================
        GOOGLE MAP
==========================*/

.map-section{

    width:100%;
    padding:0 8% 80px;
    background:#fff;

}

.map-container{

    width:100%;
    height:530px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.map-container:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.map-container iframe{

    width:100%;
    height:100%;
    border:none;

}


/*=========================
        Tablet
==========================*/

@media(max-width:992px){

.map-section{

    padding:0 5% 60px;

}

.map-container{

    height:450px;

}

}


/*=========================
        Mobile
==========================*/

@media(max-width:768px){

.map-section{

    padding:0 20px 50px;

}

.map-container{

    height:350px;

    border-radius:20px;

}

}


/*=========================
      Small Phones
==========================*/

@media(max-width:480px){

.map-container{

    height:280px;

}

}



/*==============================
          FOOTER
==============================*/

.footer{
    /* background:#0f3fa6; */
    position:relative;
    background: linear-gradient(
135deg,
#6D747D,
#5C636B,
#484E56
);
    color:#fff;
    padding:70px 7% 30px;
    overflow:hidden;
}

.footer-wrapper{
    max-width:1300px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Decorative Background */

    .footer-pattern-left{
        display:none;
    }

.footer-pattern-right{
    position:absolute;
    right:-40px;
    top:20px;
    width:220px;
    height:320px;
    opacity:.08;
    background:url("images/leaf-outline.png") center/contain no-repeat;
}

/*==============================
      Brand Section
==============================*/

.footer-tagline{
    width:240px;      /* Increase size */
    max-width:100%;
    height:auto;
    display:block;
    margin:15px auto 20px;

    filter: brightness(1.3);
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:90px;   /* Increased spacing */
}

.footer-logo {
    width: 250px; /* same visual width as company name */
    max-width: 100%;
    display: block;
    margin: 0 auto 35px;
}

.footer-brand h2 {
    margin: 0;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.green-text{
    color:#45d143;
}

.white-text{
    color:#fff;
}

.footer-line{
    width:110px;
    height:5px;
    background:#45d143;
    border-radius:30px;
    margin:28px auto;
}

.footer-brand p{
    font-size:28px;
    color:#f2f2f2;
    line-height:1.7;
    margin:0;
}


/*==============================
      Social Icons
==============================*/

.footer-social{
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
}

.footer-social a{
    width:74px;
    height:74px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:30px;
    transition:.35s;
}

.footer-social a:hover{
    transform:translateY(-8px) scale(1.08);
}

.facebook{
    background:#1877f2;
    box-shadow:0 0 18px rgba(24,119,242,.5);
}

.instagram{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
    box-shadow:0 0 18px rgba(255,95,109,.5);
}

.whatsapp{
    background:#25d366;
    box-shadow:0 0 18px rgba(37,211,102,.5);
}

.location{
    background:#ff9800;
    box-shadow:0 0 18px rgba(255,152,0,.5);
}

.linkedin{
    background:#0a66c2;
    box-shadow:0 0 18px rgba(10,102,194,.5);
}

/*==============================
      Cards
==============================*/

.footer-card{
    background: linear-gradient(180deg, #14397D 0%, #0C2A63 100%);
    border-radius:26px;
    border: 1px solid rgba(66,215,66,.25);
    border-left: 5px solid #42D742;
    padding:35px;
    margin-top:30px;      /* NEW */
    margin-bottom:34px;
    box-shadow:
0 15px 35px rgba(0,0,0,.45),
0 0 15px rgba(66,215,66,.08);
}

.card-title{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.title-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(75,218,85,.12);
    border:2px solid rgba(75,218,85,.2);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#43d44a;
    font-size:30px;
}

.card-title h3{
    font-size:42px;
    font-weight:700;
    flex:1;
}


.card-divider{
    height:1px;
    background:rgba(255,255,255,.12);
    margin-bottom:28px;
}

/*==============================
      Quick Links
==============================*/

.quick-links{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.quick-links a{
    color:#fff;
    text-decoration:none;
    font-size:28px;
    display:flex;
    align-items:center;
    gap:12px;
    justify-content:center;
    padding:12px;
    border-right:1px solid rgba(255,255,255,.12);
    transition:.3s;
}

.quick-links a:last-child{
    border-right:none;
}

.quick-links a i{
    color:#43d44a;
}

.quick-links a:hover{
    color:#43d44a;
}

/*==============================
      Contact
==============================*/

.contact-list{
    display:flex;
    flex-direction:column;
}

.contact-item{
    display:flex;
    align-items:left;
    gap:10px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    font-size: 1px;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-icon{
    width:60px;
    height:60px;
    background:#46d34c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.contact-item span{
    font-size:28px;
    color:#fff;
    word-break:break-word;
}

/*==============================
      Bottom
==============================*/

.footer-bottom{
    text-align:center;
    margin-top:45px;
}

.bottom-divider{
    position:relative;
    margin-bottom:22px;
}

.bottom-divider::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:50%;
    height:2px;
    background:rgba(70,211,76,.35);
}

.bottom-divider span{
    position:relative;
    z-index:2;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:34px;
    height:34px;
    background:#071c49;
    color:#49d54b;
    font-size:22px;
}

.footer-bottom p{
    font-size:24px;
    color:#f2f2f2;
}

/*==============================
      Tablet
==============================*/

@media(max-width:992px){

    .footer-brand{
        margin-bottom:60px;
    }

    .footer-card{
        margin-top:25px;
    }

    .footer-logo{
        width:250px;
    }

    .footer-brand h2{
        font-size:42px;
    }

    .footer-brand p{
        font-size:21px;
    }

    .quick-links{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .quick-links a{
        border:none;
        justify-content:flex-start;
        font-size:22px;
    }

    .card-title h3{
        font-size:30px;
    }

    .contact-item span{
        font-size:21px;
    }

}

/*==============================
      Mobile
==============================*/

@media(max-width:768px){

    .footer-brand{
        margin-bottom:60px;
    }

    .footer-card{
        margin-top:25px;
    }

    .footer{
        padding:60px 20px 25px;
    }

    .footer-logo{
        width:100px;
        margin-bottom:18px;
    }

    .footer-brand h2{
        font-size:34px;
    }

    .footer-line{
        width:70px;
    }

    .footer-brand p{
        font-size:18px;
    }

    .footer-social{
        gap:15px;
    }

    .footer-social a{
        width:58px;
        height:58px;
        font-size:22px;
    }

    .footer-card{
        padding:24px;
        border-radius:22px;
    }

    .card-title{
        gap:14px;
    }

    .title-icon{
        width:56px;
        height:56px;
        font-size:22px;
    }

    .card-title h3{
        font-size:26px;
    }

    .quick-links{
        grid-template-columns:1fr;
    }

    .quick-links a{
        justify-content:flex-start;
        font-size:18px;
        border:none;
    }

    .contact-item{
        align-items:flex-start;
        font-size: 1px;
    }

    .contact-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .contact-item span{
        font-size:17px;
        line-height:1.6;
    }

    .footer-bottom p{
        font-size:16px;
    }

    .footer-pattern-right{
        display:none;
    }

}

@media (max-width:480px){

    .footer-brand{
        margin-bottom:50px;
    }

    .footer-card{
        margin-top:20px;
    }

    .footer{
        padding:50px 15px 20px;
    }

    .footer-logo{
        width:100px;
    }
    .footer-brand h2 {
        font-size: 24px;
        line-height: 1;
        margin: 0;
        padding: 0;
        white-space: nowrap;
    }

    .footer-brand {
        margin: 0;
        padding: 0;
    }

    .footer-line{
        width:55px;
    }

    .footer-brand p{
        font-size:16px;
    }

    .footer-social a{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .footer-card{
        padding:20px;
        border-radius:18px;
    }

    .title-icon{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .card-title h3{
        font-size:22px;
    }

    .quick-links{
        grid-template-columns:1fr;
        width: 100%;
    }

    .quick-links a{
        font-size:16px;
    }

    .contact-card{
        width:100%;
        padding:15px;
    }

    .contact-item{
        display:flex;
        align-items:center;
        gap:10px;
        padding:10px 0;
    }

    .contact-icon{
        width:48px;
        height:48px;
        min-width:48px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .contact-item span{
        flex:1;
        font-size:12px;
        line-height:1.5;
        word-break:break-word;
        overflow-wrap:anywhere;
        width:100%;
    }
}


/*=========================
    FLOATING SOCIAL ICONS
=========================*/

.floating-icons{

    position:fixed;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    display:flex;

    flex-direction:column;

    gap:14px;

    z-index:9999;

}

.floating-icons a{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    font-size:28px;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

    transition:.35s;

}

/* Hover */

.floating-icons a:hover{

    transform:translateX(-8px) scale(1.08);

}

/* Individual Colors */

.whatsapp{

    background:#25D366;

}

.facebook{

    background:#1877F2;

}

.instagram{

    background:#E4405F;

}

.location{

    background:#0B84D8;

}

.phone{

    background:#FF8200;

}

.linkedin{

    background:#0077B5;

}

/*=========================
        Tablet
=========================*/

@media(max-width:992px){

.floating-icons{

    right:15px;

}

.floating-icons a{

    width:56px;

    height:56px;

    font-size:24px;

}

}

/*=========================
        Mobile
=========================*/

@media(max-width:768px){

.floating-icons{

    right:12px;

    gap:12px;

}

.floating-icons a{

    width:52px;

    height:52px;

    font-size:22px;

}

}

/*=========================
      Small Phones
=========================*/

@media (max-width:480px){

    .floating-icons{
        position: fixed;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 9999;
    }

    .floating-icons a{
        width: 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0;
        padding: 0;
        transform: none;
        position: static;
        flex-shrink: 0;
    }
}